home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGBLER / ASMCODE.LZH / INFO.BAT < prev    next >
DOS Batch File  |  1984-08-11  |  434b  |  20 lines

  1. ECHO OFF
  2. PATH=B:\;A:\;
  3. CLS
  4. IF NOT EXIST B:CONTENTS.DOC GOTO SWAP
  5. IF NOT EXIST B:MORE.COM GOTO SWAP
  6. B:MORE<B:CONTENTS.DOC
  7. GOTO QUIT
  8. :SWAP
  9. IF NOT EXIST A:CONTENTS.DOC GOTO MSG
  10. IF NOT EXIST A:MORE.COM GOTO MSG
  11. A:MORE<A:CONTENTS.DOC
  12. GOTO QUIT
  13. :MSG
  14. CLS
  15. ECHO Unable to locate CONTENTS file; or MORE filter not present
  16. ECHO Aborting, Correct and try again.
  17. GOTO QUIT
  18. ECHO Returning control to Disk Operating System
  19. :QUIT
  20.